From: Michael Albinus Date: Tue, 17 Jul 2007 21:08:21 +0000 (+0000) Subject: * recentf.el (recentf-keep-default-predicate): Adapt call of X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~27995 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=4e44b31fb8ba8af9884657f945b40570760af95b;p=emacs.git * recentf.el (recentf-keep-default-predicate): Adapt call of `file-remote-p'. --- diff --git a/lisp/recentf.el b/lisp/recentf.el index aea7528b2ce..5c7472f96d3 100644 --- a/lisp/recentf.el +++ b/lisp/recentf.el @@ -103,7 +103,7 @@ must return non-nil to exclude it." "Return non-nil if FILE should be kept in the recent list. It handles the case of remote files as well." (cond - ((file-remote-p file t) (file-readable-p file)) + ((file-remote-p file nil t) (file-readable-p file)) ((file-remote-p file)) ((file-readable-p file))))